All Questions
10 questions
2votes
2answers
145views
CSS not updating on a `http.server` website
I have a website using the Python http.server module and it was working great. Earlier this day I wanted 2 users to work on the same files (HTML, CSS, JS) so I set the chmod tag to 777. The problem is ...
-1votes
1answer
1kviews
HTML not loading local images in any of my browsers in my system [closed]
Problem In my main desktop system running Arch linux, when I create an HTML file with a tag and an image like so: <img src="imagepath" alt="sometext"> the image does not ...
6votes
2answers
30kviews
Download list of directory/file names only from web server index
I'm trying to curl/wget a list of directories/files names available in a directory listing of a webserver. For example from (randomly chosen) http://prodata.swmed.edu/download/, I'm trying to ...
0votes
0answers
208views
PostFix get EMails with php and write it into HTML
I Have a PostFix Server where i installed apache2 and php7.2. Now i am creating a WebPage where i want to display all my received EMails. What code do i Need to view the EMails? I tried echo "type ...
1vote
0answers
28views
How to make redirect go to alternate web page if Shift key is being held?
I am trying to make a secret alternate redirect on a web page that redirects to an alternate page when holding down the key, otherwise it redirects to the regular redirect page. Example/Clarification:...
0votes
1answer
1kviews
How to configure Apache Webserver to load GIF
I would like to understand how can i configure Apache webserver in a way that whenever someone sends a http request it should just load a 1x1 Pixel Gif.. Currently, response that we get is the text ...
0votes
2answers
4kviews
How to set up a local web server to serve up a local html page
I want to work with local web pages using the seleniumIDE It requires URL's. So I'd like to set up localhost, 127.0.0.1 I don't need anyone else or network access to it, however it would be ideal if ...
4votes
4answers
34kviews
Display hostname in static HTML page on uhttpd
I have a docker container running uhttpd and serving a static HTML page. How can I dynamically insert the hostname of the container into the static HTML page? I want to keep the container as ...
2votes
3answers
2kviews
Web front-end to find/grep/ack
In my lab, we are trying to build a web that allows the user to enter queries for find, ack, grep on a specific directory. The web would return an HTML with a table of a list of clickable files (click ...
233votes
22answers
366kviews
Simple command line HTTP server
I have a script which generates a daily report which I want to serve to the so called general public. The problem is I don't want to add to my headaches maintance of a HTTP server (e.g. Apache) with ...